/* ================= HERO / SLIDER ROUND CORNER ================= */

/* Slider wrapper */
.hero-banner-root,
.hero-banner,
.banner-slider,
.slider-wrapper {
  border-radius: 20px;
  overflow: hidden;
margin: 6px;                 /* bahar se space (screen se alag) */
}

/* Slider images */
.hero-banner-root img,
.hero-banner img,
.banner-slider img,
.slider-wrapper img {
  border-radius: 20px;
}
/* PRODUCT CARD – ROUND CORNERS ONLY */
.product-card {
  border-radius: 16px;
  overflow: hidden;
}
/* FINAL PRODUCT CARD FIX – PROFESSIONAL LOOK */
.product-card {
  border-radius: 18px !important;
  overflow: hidden !important;
  background: #F5F5F5 !important;
}

.product-card img {
  display: block;
}
/* ========= PRODUCT CARD – FINAL POLISH ========= */

/* 1. Soft depth */
.product-card {
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

/* 2. Image–info smooth join */
.product-card img {
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
}

/* 3. Product name stronger */
.product-card h3,
.product-card h4 {
  font-weight: 700;
  color: #111111;
}

/* 4. Price spacing clean */
.product-card p {
  margin-top: 6px;
}

/* Optional – wishlist polish */
.wishlist {
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}
/* ========= PRODUCT PRICE – SOFT BOLD (FINAL) ========= */

/* Selling / discounted price */
.product-card-price span {
  font-weight: 700;   /* pehle 800 tha */
  font-size: 13px;    /* thoda balanced */
  color: #111111;
}

/* MRP / cut price */
.product-card-mrp-price {
  font-weight: 500;   /* pehle 600 tha */
  font-size: 13px;
  color: #9CA3AF;
  margin-left: 6px;
  text-decoration: line-through;
}
/* ===== BACKGROUND SECTION → CARD STYLE (FINAL) ===== */

/* Har coloured section ko card banao */
.section {
  margin: 12px;                 /* bahar se space (screen se alag) */
  border-radius: 22px;          /* card jaisa round */
  overflow: hidden;             /* colour card ke andar rahe */
}

/* Thoda premium depth (optional but recommended) */
.section {
  box-shadow: 0 10px 24px rgba(0,0,0,0.10);
}
/* ================= DESKTOP HEADER COLOR FIX ================= */
@media (min-width: 992px) {

  header,
  .sh-header-main {
    background-color: #ffffff !important;
  }

  header *,
  .sh-header-main * {
    color: #111111 !important;
  }

  header svg,
  .sh-header-main svg {
    fill: #E30613 !important;
    stroke: #E30613 !important;
    color: #E30613 !important;
  }

  header a:hover {
    color: #E30613 !important;
  }

  .sh-header-cart-badge,
  .cart-count {
    background: #E30613 !important;
    color: #ffffff !important;
  }
}
/* ================= LAYOUT FIXES ================= */
main {
  padding-bottom: 0 !important;
}

.hero-banner-root {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}

.hero-banner-root + section,
.hero-banner-root + div {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

@media (max-width: 768px) {
  main {
    padding-bottom: 0 !important;
  }
}
/* =========================
   HEADER / TOP BAR
========================= */
header,
.app-header,
.top-header {
  background: linear-gradient(180deg, #ffe5e5 0%, #fff 85%);
  border-bottom: 1px solid #f2caca;
}